home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 8 / QRZ Ham Radio Callsign Database - Volume 8.iso / mac / files / t_sys5 / unixcpio.gz / unixnet.cpio / trace.h < prev    next >
C/C++ Source or Header  |  1994-07-11  |  375b  |  19 lines

  1. /* Definitions for packet dumping */
  2.  
  3. /* List of tracing functions for each interface. Entries are placed in
  4.  * this table by the driver at attach time
  5.  */
  6.  
  7. extern int (*tracef[])();
  8.  
  9. #define    TRACE_AX25    0
  10. #define    TRACE_ETHER    1
  11. #define    TRACE_IP    2
  12. #define TRACE_APPLETALK 3
  13. #define    TRACE_SLFP    4
  14. #define    NTRACE        5
  15.  
  16. #define    TRACE_SENT    0
  17. #define    TRACE_RECV    1
  18. #define    TRACE_LOOP    2
  19.